home *** CD-ROM | disk | FTP | other *** search
/ The Ultimate Frank Lloyd…ght - America's Architect / Ultimate Frank Lloyd Wright, The - America's Architect (1994)(Microsoft Home).iso / pre / flw / flwwt.dir / 00021_Script_21 < prev    next >
Text File  |  1994-11-15  |  1KB  |  47 lines

  1. on startMovie
  2.   global nowFrame, currMM
  3.   global seeAlsoNess
  4.   set seeAlsoNess = FALSE
  5.   set nowFrame = "wtmai000000n°°"
  6.   set currMM = "FLWMM"
  7.   puppetSprite 2, TRUE
  8.   puppetSprite 3, TRUE
  9.   puppetSprite 4, TRUE
  10.   puppetSprite 21, TRUE
  11.   puppetSprite 22, TRUE
  12.   puppetSprite 23, TRUE
  13.   set the immediate of sprite 23 to TRUE
  14.   set the stretch of sprite 23 to FALSE
  15. end startMovie
  16.  
  17. on saveLocals
  18.   global lastMovie, lastFrame, nowFrame
  19.   set lastFrame = nowFrame
  20.   set lastMovie = "FLWWT"
  21. end saveLocals
  22.  
  23. on buttonState
  24.   global FrankNav, bFlag
  25.   rollCheck
  26.   if (the mouseV > 400) or bFlag = TRUE then
  27.     doState
  28.   end if
  29. end buttonState
  30.  
  31. on rollCheck
  32.   if rollover(2) then
  33.     set the castNum of sprite 2 to the number of cast "RHUP"
  34.     set the castNum of sprite 3 to the number of cast "LBDN"
  35.     set the castNum of sprite 4 to the number of cast "EBDN"
  36.   else if rollover(3) then
  37.     set the castNum of sprite 2 to the number of cast "RHDN"
  38.     set the castNum of sprite 3 to the number of cast "LBUP"
  39.     set the castNum of sprite 4 to the number of cast "EBDN"
  40.   else if rollover(4) then
  41.     set the castNum of sprite 2 to the number of cast "RHDN"
  42.     set the castNum of sprite 3 to the number of cast "LBDN"
  43.     set the castNum of sprite 4 to the number of cast "EBUP"
  44.   end if
  45. end rollCheck
  46.  
  47.